home *** CD-ROM | disk | FTP | other *** search
- stop();
- _parent.page = 1;
- previous_btn.onRelease = function()
- {
- _parent.page = _parent.page - 1;
- if(_parent.page < 1)
- {
- _parent.page = 3;
- }
- gotoAndStop("p" + _parent.page);
- };
- next_btn.onRelease = function()
- {
- _parent.page = _parent.page + 1;
- if(_parent.page > 3)
- {
- _parent.page = 1;
- }
- gotoAndStop("p" + _parent.page);
- };
- p2.onRelease = function()
- {
- gotoAndStop(this._name);
- };
- p3.onRelease = function()
- {
- gotoAndStop(this._name);
- };
-